home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / init / gdm.conf < prev    next >
Text File  |  2009-10-20  |  1KB  |  44 lines

  1. # gdm - GNOME Display Manager
  2. #
  3. # The display manager service manages the X servers running on the
  4. # system, providing login and auto-login services
  5.  
  6. description    "GNOME Display Manager"
  7. author        "William Jon McCann <mccann@jhu.edu>"
  8.  
  9. start on (filesystem
  10.       and started hal
  11.       and tty-device-added KERNEL=tty7
  12.       and (graphics-device-added or stopped udevtrigger))
  13. stop on runlevel [016]
  14.  
  15. emits starting-dm
  16.  
  17. respawn
  18.  
  19. script
  20.     [ ! -f /etc/X11/default-display-manager -o "$(cat /etc/X11/default-display-manager 2>/dev/null)" = "/usr/sbin/gdm" ]
  21.  
  22.     # Check kernel command-line for inhibitors
  23.     for ARG in $(cat /proc/cmdline)
  24.     do
  25.         case "${ARG}" in
  26.             text|-s|s|S|single)
  27.                 exit 0
  28.                 ;;
  29.         esac
  30.     done
  31.  
  32.     if [ -r /etc/default/locale ]; then
  33.     . /etc/default/locale
  34.     export LANG LANGUAGE
  35.     elif [ -r /etc/environment ]; then
  36.     . /etc/environment
  37.     export LANG LANGUAGE
  38.     fi
  39.  
  40.     initctl emit starting-dm DM=gdm
  41.  
  42.     exec gdm-binary $CONFIG_FILE
  43. end script
  44.